home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / quiz.dxr / 00004.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  807 b   |  33 lines

  1. on mouseDown
  2.   set the text of field "password" to EMPTY
  3.   set the editable of member "name" to 0
  4.   set the editable of member "password" to 1
  5. end
  6.  
  7. on keyDown
  8.   if the keyCode = "48" then
  9.     set the editable of member "password" to 0
  10.     go("choicescreen")
  11.   end if
  12.   if the keyCode = 36 then
  13.     set the editable of member "password" to 0
  14.     go("choicescreen")
  15.   end if
  16.   set i to the number of chars in field "password"
  17.   if the keyCode = 51 then
  18.     put EMPTY into char i of field "password"
  19.   end if
  20.   if the keyCode = 117 then
  21.     put EMPTY into char i of field "password"
  22.   end if
  23.   if the keyCode <> 48 then
  24.     if the keyCode <> 51 then
  25.       if the keyCode <> 117 then
  26.         if the keyCode <> 36 then
  27.           put "*" after field "password"
  28.         end if
  29.       end if
  30.     end if
  31.   end if
  32. end
  33.